2 ==============================================================================
4 This is an automatically generated file created by the Jucer!
6 Creation date: %%creationTime%%
8 Be careful when adding custom code to these files, as only the code within
9 the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
14 ------------------------------------------------------------------------------
16 The Jucer is part of the JUCE library - "Jules' Utility Class Extensions"
17 Copyright 2004-6 by Raw Material Software ltd.
19 ==============================================================================
22 #ifndef %%headerGuard%%
23 #define %%headerGuard%%
25 //[Headers] -- You can add your own extra header files here --
31 //==============================================================================
34 An auto-generated component, created by the Jucer.
36 Describe your class and how it works here!
42 //==============================================================================
43 %%className
%% (%%constructorParams
%%);
46 //==============================================================================
47 //[UserMethods] -- You can add your own custom methods in this section.
50 %%publicMemberDeclarations
%%
52 //==============================================================================
53 juce_UseDebuggingNewOperator
56 //[UserVariables] -- You can add your own custom variables in this section.
59 //==============================================================================
60 %%privateMemberDeclarations
%%
62 //==============================================================================
63 // (prevent copy constructor and operator= being generated..)
64 %%className
%% (const %%className
%%&);
65 const %%className
%%& operator= (const %%className
%%&);
69 #endif // %%headerGuard%%